8×6 Matrix{Float64}:
0.0188769 0.114189 0.490277 0.374496 0.0247996 0.44082
0.265916 0.0497233 0.809168 0.307857 0.0630933 0.0762059
0.735082 0.662211 0.0750717 0.973949 0.370047 0.903715
0.626535 0.609608 0.976141 0.443066 0.770161 0.616573
0.565962 0.135248 0.715464 0.838756 0.697419 0.186754
0.64433 0.650992 0.771561 0.544595 0.474615 0.214476
0.94217 0.68064 0.304683 0.19466 0.191573 0.040293
0.278114 0.64145 0.445902 0.806693 0.649845 0.66748
Example: matrix of scrubbers
Click and drag one of the numbers below to modify B
.
missing
Example: select entries
Click and drag to select entries. Use Ctrl
(Windows) or Cmd
(Mac) to combine selections.
8×6 Matrix{Bool}:
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
Example: select entries with multiplier
Click and drag to select entries. Use Ctrl
(Windows) or Cmd
(Mac) to combine selections.
8×6 Matrix{Float64}:
0.0188769 0.114189 0.490277 0.374496 0.0247996 0.44082
0.265916 0.0497233 0.809168 0.307857 0.0630933 0.0762059
0.735082 0.662211 0.0750717 0.973949 0.370047 0.903715
0.626535 0.609608 0.976141 0.443066 0.770161 0.616573
0.565962 0.135248 0.715464 0.838756 0.697419 0.186754
0.64433 0.650992 0.771561 0.544595 0.474615 0.214476
0.94217 0.68064 0.304683 0.19466 0.191573 0.040293
0.278114 0.64145 0.445902 0.806693 0.649845 0.66748
Example: show_matrix
As a second argument, you can pass a Matrix{Bool}
of elements that should be shown in red.
Appendix
To use this widgets in another notebook, copy all cells in this appendix to a new notebook.
Select entries
SelectEntries
unwrap (generic function with 1 method)
4×3 Matrix{Bool}:
0 0 0
0 0 0
0 0 0
0 0 0
bounding_box (generic function with 1 method)
3×2 Matrix{Bool}:
1 1
1 1
1 1
3×2 Matrix{Bool}:
1 1
1 1
1 0
rows (generic function with 1 method)
scrub_matrix
scrub_matrix (generic function with 1 method)
default_range (generic function with 1 method)
default_range (generic function with 2 methods)
default_range (generic function with 3 methods)
0.1
0.125893
0.158489
0.199526
0.251189
0.316228
0.398107
0.501187
0.630957
0.794328
1.0
1.25893
1.58489
1.99526
2.51189
3.16228
3.98107
5.01187
6.30957
7.94328
10.0
4×3 Matrix{Float64}:
-0.712352 0.0755704 -1.59489
1.82219 -0.692118 0.694966
0.405784 -0.273298 1.8234
-0.942239 -1.0445 -0.129699
missing
Transform superwidget
transformed_value(transform::Function, widget::Any; [initial_value::Function])
Create a new widget that wraps around an existing one, with a value transformation.
This function creates a so-called high-level widget: it returns your existing widget, but with additional functionality. You can use it in your package
Example
A simple example to get the point accross:
function RepeatedTextSlider(text::String)
transform = input -> repeat(text, input)
new_widget = transformed_value(transform, PlutoUI.Slider(1:10))
return new_widget
end
@bind greeting RepeatedTextSlider("hello")
# moving the slider to the right...
greeting == "hellohellohello"
This function is very useful in combination with PlutoUI.combine
. Let's enhance our previous example by adding a text box where the repeated text can be entered. If you have not used PlutoUI.combine
yet, you should read about that first.
function RepeatedTextSlider()
# Note that the input to `transform` is now a Tuple!
# (This is the output of `PlutoUI.combine`)
transform = input -> repeat(input[1], input[2])
old_widget = PlutoUI.combine() do Child
md""" $(Child(PlutoUI.TextField())) $(Child(PlutoUI.Slider(1:10)))"""
end
new_widget = transformed_value(transform, old_widget)
return new_widget
end
TransformedWidget
show_matrix
show_matrix (generic function with 2 methods)